home *** CD-ROM | disk | FTP | other *** search
/ Freelog 97 / FreelogNo97-MaiJuin2010.iso / Graphisme / 7capture / 7capture-setup.exe / {app} / 7capture.chm / jsrelative.js < prev    next >
Text File  |  2010-02-20  |  278b  |  13 lines

  1. function relativelnk(fn) {
  2. var X, Y, sl, a, ra, link;
  3. ra = /:/;
  4. a = location.href.search(ra);
  5. if (a == 2)
  6. X = 14;
  7. else
  8. X = 7;
  9. sl = "\\";
  10. Y = location.href.lastIndexOf(sl) + 1;
  11. link = "file:///" + location.href.substring(X, Y) + "files/" + fn;
  12. location.href = link;
  13. }